home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / wwived23.zip / NEW.DOC < prev    next >
Text File  |  1992-04-19  |  5KB  |  138 lines

  1. FILENAME: NEW.DOC
  2.  
  3. This is a supplement to the WWIVEDIT.DOC.  This is stuff I didn't have time
  4. to incorporate into the "real" documentation.
  5.  
  6. This file will look awefully familar to my Beta Testers.
  7.  
  8. ===========================================================================
  9. So what exactly is new?
  10.  
  11. Gads... Mouse support, defaults section, cleaned up lots of stuff...
  12. And LOTS more.
  13.  
  14. New Features:
  15. ==========================================================================
  16. In the MACROS.LCL file, you can now have 3 different formats for the "macro
  17. name".
  18.  
  19.     Format 1 is the standard 'Name:' format.  This format "dumps" the
  20. following lines into the keyboard input buffer... So ESC is interpreted as
  21. it would be if you hit ESC from the keyboard, etc..
  22.  
  23. Example (alt-E macro):
  24. E:
  25. The Emporer Lives!
  26. :E
  27.  
  28.     Format 2 is a raw format of the form 'Name"'.  This format inserts
  29. directly into the text whatever is between the delimiters with the
  30. exception of a tilde at the begining and the end of the line... These are
  31. handled in the same way as the standard format (see 2.2 documentation)
  32. This format was requested by a registered user, so I thought I would just
  33. document it...  The real difference between the standard format and this
  34. format is seen when an ESC appears in the "raw" text...
  35.  
  36. Example (Shift-F5 macro):
  37. $F5"
  38. This is raw ascii
  39. :$F5
  40.  
  41.     Format 3 is a DOS batch macro.   It is of the form 'Name;'.  This
  42. format is used to run a series of DOS command from within WWIVEdit.
  43.  
  44. Example (ALT-0 macro)
  45. 0;
  46. CD\WWIV\DLOADS\SYSOP
  47. DIR /W
  48. PAUSE
  49. IF EXIST BLAH.ZIP GOTO BLAHLABEL
  50. ECHO BLAH.ZIP isn't here.
  51. PAUSE
  52. EXIT
  53. :BLAHLABEL
  54. ECHO BLAH.ZIP is here.
  55. :0
  56.  
  57. Each of these formats will be fully documented in the .HLP and .DOC file
  58. before the final release of 2.3. (Yeah Right ;)
  59. ==========================================================================
  60. DOS Shell
  61.  
  62. A DOS shell is now available any time WWIVEdit is waiting for input... Just
  63. hold down CONTROL and ALT, and it will shell out.  If you have EMS
  64. available, WWIVEdit will swap itself out to EMS, otherwise it will swap out
  65. to Disk.
  66.  
  67. Type EXIT to return to WWIVEdit
  68.  
  69. Note: This has not been tested while a user is on line... I know it will
  70. not properly redraw the screen for the user if one is on (it will redraw
  71. correctly locally), but aside from that, I haven't put it to the test..
  72. ===========================================================================
  73. Configuration Files
  74.  
  75. WWIVEdit now requires configuration files.
  76. Provided in this distribution should be the following config files:
  77. DEFAULT.DEF
  78. DEFAULT.KEY
  79. LOCAL  .DEF
  80. LOCAL  .KEY
  81. FOSSIL .DEF
  82. ECLIPSE.DEF
  83. DOS    .DEF
  84.  
  85. The .DEF files define which functions of WWIVEdit to enable, and the .KEY
  86. files tell what to map the keys as.  WWIVEdit will produce a binary format
  87. of each of these files after it has run once, and will on subsequent runs
  88. load the binary format (because its quicker).  If you modify these files
  89. after WWIVEdit has run, it will detect this and recompile the binary
  90. format.
  91.  
  92. If you want to force an update on them, type from DOS level:
  93. WWIVEDIT -F
  94.  
  95. The format of these files should be self explanitory by viewing and editing
  96. them.
  97. ===========================================================================
  98. Command Line switches
  99.  
  100. I think I removed every single command line switch from 2.2 (they are now
  101. set in the .DEF files).
  102.  
  103. Two new command line options have been added (one of which will be obsolete
  104. by the end of Beta testing (hopefully)).
  105.  
  106. "-key:xxxxx" tells WWIVEdit which key binding to load.
  107.  
  108. "-set:xxxxx" tells WWIVEdit which settings (.DEF) file to load
  109.  
  110. So, these should be the only command lines needed for now:
  111.  
  112. Remote:
  113.   WWIVEDIT\WWIVEDIT %1 %2 %3 %4
  114. Local:
  115.   WWIVEDIT\WWIVEDIT %1 %2 %3 %4 -key:local -set:local
  116.  
  117. Note: DEFAULT.* are just that... defaults... so by not putting anything on
  118. the remote line, it defaults to those files.  Also, assumes the standard
  119. directory setup described in the 2.2 documentation.
  120. ===========================================================================
  121. Dictionary
  122.  
  123. The dictionary has been changed to allow the larger dictionary promised in
  124. the 2.2 documentation to actually run at a reasonable speed.
  125.  
  126. The new format employs data compression, hashing, and temporary dictionarys
  127. to achieve speeds much greater than the 2.2 format could.  The drawback to
  128. all this is that Suggestions now take longer, and there are less of them...
  129. but they are more likely to be just what you want...
  130.  
  131. The format of the display has also been greatly altered to make it a bit
  132. quicker to display.
  133.  
  134. At the last moment, I have decided that there will be no "special" registered
  135. dictionary, so what you see is what you get... that's why this .ZIP is so
  136. damn large!
  137. ===========================================================================
  138.